
/** banner **/
.swiper-container.banner-container {
    width: 100%;
    height: 420px;
}
.swiper-container.banner-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}
.swiper-container.banner-container .swiper-slide img {
    width: initial;
    position: absolute;
    left: 50%;
    margin-left: -960px;
}
.swiper-container.banner-container .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
}

.swiper-container.banner-container .swiper-pagination-clickable .swiper-pagination-bullet {
    vertical-align: middle;
}
.swiper-container.banner-container .swiper-pagination-bullet-active {
    width: 8px !important;
    height: 8px !important;
    background: #4f87fb !important;
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
}
.swiper-container.banner-container .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 20px !important;
}
.swiper-container.banner-container .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 20px !important;
}
.swiper-button-next.banner-next, .swiper-button-prev.banner-prev {
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 0 10px rgba(0,0,0,0.4);
}

/** product **/
.content{
    width: 1200px;
    margin: 10px auto;
    font-size: 0;
}

.box {
    display: inline-block;
    vertical-align: top;
    font-size: 0;
}
.box.product {
    width: 728px;
}
.title {
    margin: 15px 0 0 0;
    font-size: 0;
}
.title .name {
    display: inline-block;
    width: 50%;
    font-size: 20px;
    color: #454f66;
    font-weight: 500;
}
.title .more {
    display: inline-block;
    width: 50%;
    text-align: right;

}
.title .more a  {
    display: inline-block;
    font-size: 14px;
    color: #4f87fb;
    padding-right: 15px;
    background-image: url("../Images/icon_arrow_r_blue.png");
    background-repeat: no-repeat;
    background-position: right;
    box-sizing: border-box;
}
.bottom {
    font-size: 0;
}
.product-item {
    display: inline-block;
    vertical-align: top;
    width: 340px;
    margin: 10px 0;
}
.product-item:nth-child(even) {
    margin-left: 48px;
}
.product-item .product-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    color: #4f87fb;
    position: relative;
}
.product-item .product-img .news-hover {
    display: none;
}
.product-item .product-img:hover img {
    transform: scale(1.2,1.2);
    transition: all 0.6s;
}
.product-item .product-img:hover .news-hover {
    display: block;
    background-color: rgba(79,135,251,0.6);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.product-item .product-img:hover .news-hover span {
    display: block;
    width: 300px;
    font-size: 14px;
    color: #fff;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(0,-50%);
}
.product-item p {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-item a {
    display: inline-block;
    font-size: 16px;
    color: #454f66;
    margin-top: 10px;
}
.product-item a:hover {
    color: #4f87fb;
    font-weight: 400;
}

/** news **/
.news {
    margin-left: 86px;
    width: 386px;
}
.news-img {
    display: inline-block;
    width: 380px;
    height: 170px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}
.news-img:hover img {
    transform: scale(1.1,1.1);
    transition: all 0.4s;
}
.news-autoplay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4);
    display: none;
}
.news-img:hover .news-autoplay {
    display: block;
    transition: all 0.4s;
}
.news-img:hover .news-autoplay span {
    background-image: url("../Images/icon_autoplay.png");
    transform: scale(1.1,1.1);
    transition: all 0.4s;
}
.news-autoplay span {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../Images/icon_autoplay_gray.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px;
}
.news-img:hover p {
    display: none;
    transition: all 0.4s;
}
.news-img p {
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 16px;
    color: #fff;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.news-item {
    display: inline-block;
}
.news-tit {
    margin-top: 12px;
    width: 386px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-tit a {
    font-size: 16px;
    color: #454f66;
}
.news-tit a:hover {
    color: #4f87fb;
    font-weight: 400;
}
.news-tit a:hover .point {
    background-color: #4f87fb;
}
.news-tit .point {
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 4px;
    background-color: #454f66;
    margin-right: 5px;
}
.news-con {
    margin-left: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #9aa3b7;
    word-break: break-all;
    white-space: normal;
    margin-top: 2px;
}

/** map **/
.map {
    width: 728px;
    padding-top: 20px;
}
.haadlogo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 50px 0 30px 0;
}
.map-box {
    display: inline-block;
    vertical-align: top;
    width: 380px;
}
.adr-box {
    display: inline-block;
    vertical-align: top;
    margin-left: 38px;
    width: 300px;
    height: 320px;
}
.adr-name {
    font-size: 20px;
    color: #454f66;
    font-weight: 500;
    margin-bottom: 10px;
}
.adr-icon {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    margin-right: 10px;
}
.adr-icon.adr {
    width: 12px;
    height: 14px;
    background-image: url("../Images/icon_addr.png");
}
.adr-icon.phone {
     width: 13px;
     height: 13px;
     background-image: url("../Images/icon_phone.png");
 }
.adr-icon.email {
    width: 15px;
    height: 12px;
    background-image: url("../Images/icon_index_email.png");
}
.adr-text {
    font-size: 14px;
    color: #9aa3b7;
    max-width: 310px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.adr-text.special {
    margin-top: 6px;
}
.page {
    list-style: none;
    margin-top: 30px;
}
.page li {
    display: inline-block;
    vertical-align: middle;
}
.page-icon {
    display: block;
    width: 18px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    cursor: pointer;
}
.page-point {
    display: block;
    width: 6px;
    height: 6px;
    background-color: #bcc1cc;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}
.page li .page-point:hover {
    background-color: #4f87fb;
}
.page-point.page-active {
    background-color: #4f87fb;
    box-shadow: 0 0 0 4px #dce5ff;
}
.page-icon.page-prev {
    margin-right: 40px;
    background-image: url("../Images/icon_pagination_l_gray.png");
}
.page-icon.page-next {
    margin-left: 40px;
    background-image: url("../Images/icon_pagination_r_blue.png");
}

.map-container {
    width: 100%;
    height: 100%;
}
.map-container .swiper-pagination {
    width: 50% !important;
}
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 30px !important;
}
.swiper-button-prev.map-prev {
    left: 0;
}
.swiper-button-next.map-next {
    left: 45%;
}
.swiper-button-next.map-next, .swiper-button-prev.map-prev {
    top: auto;
    bottom: 35px;
    z-index: 9999;
    width: 18px;
    height: 10px;
}
.map-container .swiper-button-prev, .map-container .swiper-container-rtl .swiper-button-next {
    background-image: url("../Images/icon_pagination_l_blue.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 10px;
}
.map-container  .swiper-button-next, .map-container  .swiper-container-rtl .swiper-button-prev {
    background-image: url("../Images/icon_pagination_r_blue.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 10px;
}
.swiper-container.map-container .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background-color: #bcc1cc !important;
}
.swiper-container.map-container .swiper-pagination-bullet-active {
    background-color: #4f87fb !important;
    box-shadow: 0 0 0 4px #dce5ff !important;
}

/** order **/
.order {
    background-color: #f8faff;
    margin-left: 74px;
    width: 386px;
    padding: 40px;
    box-sizing: border-box;
}
.order-title {
    font-size: 20px;
    color: #454f66;
    font-weight: 500;
}
.order-search form {
    text-align: center;
    width: 100%;
    font-size: 0;
    margin-top: 12px;
}
.order-search input {
    display: inline-block;
    width: 260px;
    height: 40px;
    background-color: #fff;
    font-size: 16px;
    color: #454f66;
    line-height: 38px;
    border-radius: 3px 0 0 3px;
    border-left: 1px solid #c9cedb;
    border-bottom: 1px solid #c9cedb;
    border-top: 1px solid #c9cedb;
    padding: 0 0 0 10px;
    box-sizing: border-box;
}
.order-search button {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    background-color: #4f89f6;
    border-radius: 0 3px 3px 0;
}
.order-search button span {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../Images/icon_search.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}
.login-title {
    margin: 40px 0 0;
}

.inp-group {
    border: 1px solid #c9cedb;
    border-radius: 3px;
    background-color: #fff;
    font-size: 0;
    box-sizing: border-box;
    margin: 15px 0;
}
.inp-group .login-icon {
    display: inline-block;
    width: 50px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
}
.inp-group .login-icon.phone {
    background-image: url("../Images/icon_mobile.png");
    background-size: 12px 17px;
}
.inp-group .login-icon.pwd {
    background-image: url("../Images/icon_psd.png");
    background-size: 14px 16px;
}
.inp-group input {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    color: #454f66;
    line-height: 40px;
    padding: 0;
}
.login-search button {
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    background-color: #4f89f6;
    text-align: center;
    border-radius: 3px;
    margin-top: 5px;
}
/* shade */
.shade {
    background-color: rgba(0,0,0,0.8);
    z-index: 9;
    overflow: hidden;
    display: none;
}
.shade .shade-close {
    width: 200px;
    height: 200px;
    position: absolute;
    right: -100px;
    top: -100px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
}
.shade .shade-close:hover {
    background-color: rgba(255,255,255,0.6);
}
.shade .shade-close:hover span {
    transition: all 0.2s;
    transform: rotate(10deg);
}
.shade .shade-close span {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url("../Images/icon_close_white.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
    margin-top: 115px;
    margin-left: 42px;
}
.shade-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}